home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / lisp / ilisp / scheme2c.mail / text0000.txt < prev   
Encoding:
Text File  |  1995-01-26  |  440 b   |  18 lines

  1. To get Scheme->C to work under ILisp I had to create my own executable with
  2. the following C foreign function:
  3.  
  4. #include <stdio.h>
  5. void nobuff(){setbuf(stdout, (char*)0);}
  6.  
  7. (define-c-external (nobuff) void "nobuff")
  8. (nobuff)
  9.  
  10. I had to do a similar thing to get SCM to work in an Epsilon process buffer
  11. under DOS.
  12.  
  13. This may or may not have to do with your problem.
  14.  
  15.     Jeff (home page http://www.cdf.toronto.edu/DCS/Personal/Siskind.html)
  16.  
  17.  
  18.